bufio.Writer.n (field)
27 uses
bufio (current package)
bufio.go#L582: n int
bufio.go#L630: b.n = 0
bufio.go#L639: if b.n == 0 {
bufio.go#L642: n, err := b.wr.Write(b.buf[0:b.n])
bufio.go#L643: if n < b.n && err == nil {
bufio.go#L647: if n > 0 && n < b.n {
bufio.go#L648: copy(b.buf[0:b.n-n], b.buf[n:b.n])
bufio.go#L650: b.n -= n
bufio.go#L654: b.n = 0
bufio.go#L659: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L666: return b.buf[b.n:][:0]
bufio.go#L670: func (b *Writer) Buffered() int { return b.n }
bufio.go#L684: n = copy(b.buf[b.n:], p)
bufio.go#L685: b.n += n
bufio.go#L694: n := copy(b.buf[b.n:], p)
bufio.go#L695: b.n += n
bufio.go#L708: b.buf[b.n] = c
bufio.go#L709: b.n++
bufio.go#L738: size = utf8.EncodeRune(b.buf[b.n:], r)
bufio.go#L739: b.n += size
bufio.go#L764: n = copy(b.buf[b.n:], s)
bufio.go#L765: b.n += n
bufio.go#L774: n := copy(b.buf[b.n:], s)
bufio.go#L775: b.n += n
bufio.go#L804: m, err = r.Read(b.buf[b.n:])
bufio.go#L813: b.n += m
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |